projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8788fab
)
* Keep comp-subr-list into pure space
author
AndreaCorallo
<akrl@sdf.org>
Sat, 29 Feb 2020 08:36:06 +0000
(08:36 +0000)
committer
Andrea Corallo
<akrl@sdf.org>
Sat, 29 Feb 2020 08:36:06 +0000
(08:36 +0000)
Sad pure space is not effective nowdays but anyway... should go there.
src/lread.c
patch
|
blob
|
history
diff --git
a/src/lread.c
b/src/lread.c
index 005528782d03f377f6970070cdd0bc959b39b45f..8b6db92cca9b581634d2dbab33e8a52d86b19e22 100644
(file)
--- a/
src/lread.c
+++ b/
src/lread.c
@@
-4405,7
+4405,7
@@
defsubr (union Aligned_Lisp_Subr *aname)
XSETSUBR (tem, sname);
set_symbol_function (sym, tem);
#ifdef HAVE_NATIVE_COMP
- Vcomp_subr_list = F
cons (tem, Vcomp_subr_list
);
+ Vcomp_subr_list = F
purecopy (Fcons (tem, Vcomp_subr_list)
);
#endif
}